home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / doc / toc.awk < prev    next >
Encoding:
AWK Script  |  1992-02-16  |  295 b   |  9 lines

  1. #! /bin/sh
  2. # turn raw index data into tbl input for a table of contents.
  3. # record format: toc:page:title:section #:chapter|majorsection
  4. exec awk '
  5. BEGIN { FS=":"; sep="\t" }
  6. $5 == "chapter"      {           print $4 sep $3 sep $2 }
  7. $5 == "majorsection" { print ""; print $4 sep $3 sep $2 }
  8. ' $*
  9.